var encoding/json.hex
10 uses
encoding/json (current package)
encode.go#L248: var hex = "0123456789abcdef"
encode.go#L988: dst = append(dst, '\\', 'u', '0', '0', hex[b>>4], hex[b&0xF])
encode.go#L1019: dst = append(dst, '\\', 'u', '2', '0', '2', hex[c&0xF])
indent.go#L26: dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
indent.go#L32: dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
indent.go#L57: dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
indent.go#L63: dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |